-
-
Notifications
You must be signed in to change notification settings - Fork 61
Add-on minute checkout session setup #2944
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
emma-sg
wants to merge
24
commits into
main
Choose a base branch
from
additional-minutes-addon-purchase
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4ee2020 to
82a6295
Compare
ikreymer
reviewed
Nov 7, 2025
5ad2648 to
93fd027
Compare
d6084da to
208d0eb
Compare
- add get_checkout_url method to create checkout session for additional minutes - add /checkout/execution-minutes endpoint to handle addon purchase requests (this will need to be updated in dev/prod playbooks) - update CI workflows to remove portalUrl suffix from secret value - add test endpoint in echo server to mock checkout response
convert to json before converting to output type more debugging fix model type pass return url to checkout session request fix fn ordering correctly pass in headers include content-type header fix double encoding as json properly dump model to dict in requests
try using `org_dep` directly in quotas endpoint this should be safe, since there's still a check for if user is superuser allow shared secret in org dep
- adds separate "add-ons" section to display extra execution minutes and gifted execution minutes when present - renames renderQuotas to renderMonthlyQuotas for clarity
entire orgs router - renames `shared_secret_or_active_user` to `shared_secret_or_superuser` to better reflect that it only allows superuser, not all users - moves the `quotas` endpoint to the app router to allow using `org_superuser_or_shared_secret_dep` dependency specifically - removes its user dependency & extra check for superuser, since user is required to be superuser in `superuser_or_shared_secret_dep` (depended on by `org_superuser_or_shared_secret_dep`) - adds a couple more types to `init_subs` arguments
208d0eb to
e2b3dd2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For context & flow diagram, see https://github.com/webrecorder/cashew/pull/59
I intend to also add some tests for the new add quotas endpoint, have not yet gotten to it.